Private m_cboAuthorsText As String

    Public Property cboAuthorsText() As String
        Get
            cboAuthorsText = m_cboAuthorsText
            cboAuthorsText = cboAuthors.Text()
        End Get
        Set(ByVal Value As String)
            m_cboAuthorsText = Value
            cboAuthors.Text = Value
        End Set
    End Property
